博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Repeater实现数据绑定
阅读量:6002 次
发布时间:2019-06-20

本文共 2679 字,大约阅读时间需要 8 分钟。

Repeater基础在aspx文件中加入Repeater 控件,在
包含的范围里加入自己控制的代码,需要替换的变量使用<%# Eval("SellerName")%>;注意两侧的引号。.aspx:
  • <%# Eval("ComName")%>
  • 对应的后台cs中,在页面加载处加入数据绑定的代码:protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DataTable dt = SellerDA.GetTopHotSellers(9); SellerRpt.DataSource = dt; SellerRpt.DataBind(); } } aspx中"SellerName"、"ComName"为DataTable 中的列名。优化直接使用DataItem可减少Eval函数的执行步骤,优化页面解析时间:<%# ((DataRowView)Container.DataItem)["SellerName"]%>替换<%# Eval("SellerName")%><%--其他绑定方法,可以对没有列明如数组进行绑定--%> <%#Container.DataItem %><%--绑定格式等--%> <%#Eval("times","{0:yyyy-MM-dd}")%> <%#Eval("price","{C:货币}")%> ArrayList数据源如果数据源是ArrayList,并且ArrayList为一列string数组,则可不用写出列名:.aspx:
    <%#Container.DataItem%>
    .cs: ArrayList alterText; AdDA.GetIndexTopList(out alterText); topAdHintRpt.DataSource = alterText; topAdHintRpt.DataBind(); 处理后显示某些情况下,数据库中检索出来的数据并不适合直接显示出来,想要适当处理后显示(eg:日期的格式,字符串长度的控制),可使用标签来占位,在onitemdatabound函数中自行控制:.aspx:
    .cs:protected void ProRpt_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { DataRowView rowv = (DataRowView)e.Item.DataItem;//找到分类Repeater关联的数据项 string strDate = rowv["clDate"].ToString(); Label DateLB = e.Item.FindControl("colinDate") as Label; DateLB.Text = strDate.Substring(0, 10); } } 嵌套Reapeter的显示对于某些复杂的显示逻辑,需用用到Reapeter的嵌套,这里需要自行控制2层数据源的数据绑定:.aspx:
    <%# Eval("Name")%>: <%# Eval("Value")%>
    .cs:protected void ProRpt_ItemDataBound(object sender, RepeaterItemEventArgs e) { //判断里层repeater处于外层repeater的哪个位置( AlternatingItemTemplate,FooterTemplate, //HeaderTemplate,,ItemTemplate,SeparatorTemplate if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { Repeater rep = e.Item.FindControl("ParaRpt") as Repeater;//找到里层的repeater对象 DataRowView rowv = (DataRowView)e.Item.DataItem;//找到分类Repeater关联的数据项 string str = Convert.ToString(rowv["Pro_Content"]); //获取填充子类的内容 rep.DataSource = Product.FillPara(str); rep.DataBind(); } } //三重绑定可以在二重绑定方法中加入事件  rep.ItemDataBound += new RepeaterItemEventHandler(rpt_ItemDataBound);

    转自:

    转载于:https://www.cnblogs.com/jasonzeng/p/4059458.html

    你可能感兴趣的文章
    linux后台运行程序
    查看>>
    Python异步IO --- 轻松管理10k+并发连接
    查看>>
    Oracle中drop user和drop user cascade的区别
    查看>>
    登记申请汇总
    查看>>
    Android Jni调用浅述
    查看>>
    CodeCombat森林关卡Python代码
    查看>>
    (二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
    查看>>
    Shell基础之-正则表达式
    查看>>
    JavaScript异步之Generator、async、await
    查看>>
    讲讲吸顶效果与react-sticky
    查看>>
    c++面向对象的一些问题1 0
    查看>>
    售前工程师的成长---一个老员工的经验之谈
    查看>>
    Get到的优秀博客网址
    查看>>
    老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
    查看>>
    Python学习--time
    查看>>
    在OSCHINA上的第一篇博文,以后好好学习吧
    查看>>
    Spring常用注解
    查看>>
    linux:yum和apt-get的区别
    查看>>
    Sentinel 1.5.0 正式发布,引入 Reactive 支持
    查看>>
    数据库之MySQL
    查看>>